利用after伪元素实现hr效果 发表于 2018-09-04 | 分类于 HTML/CSS | | [TOC] 1<div class="item"> 123456789101112.item{ position: relative; &:after { display: block; position: absolute; width: 100%; left: 0; bottom: 0; border-bottom: 1px rgba(7, 17 , 27, 0.1) solid; content: ' '; }}